home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / Cell Control / DATA1.CAB / DELPHIDM / Celldemo.dpr < prev    next >
Encoding:
Text File  |  1998-01-11  |  1.9 KB  |  57 lines

  1. program celldemo;
  2.  
  3. uses
  4.   Forms,
  5.   main in 'main.pas' {Base},
  6.   AboutP in 'AboutP.pas' {AboutPro},
  7.   Tempunit in 'Tempunit.pas' {Template},
  8.   UDrag in 'UDrag.pas' {FDrag},
  9.   Udummy in 'Udummy.pas' {FDummy},
  10.   UText in 'UText.pas' {FText},
  11.   UCelltyp in 'UCelltyp.pas' {FCelltyp},
  12.   UStyle in 'UStyle.pas' {FStyle},
  13.   UBack in 'UBack.pas' {FBack},
  14.   UFormula in 'UFormula.pas' {FFormula},
  15.   USort in 'USort.pas' {FSort},
  16.   UChart in 'UChart.pas' {FChart},
  17.   UPrint in 'UPrint.pas' {FPrint},
  18.   UMultPag in 'UMultPag.pas' {FMultiPag},
  19.   USave in 'USave.pas' {FSave},
  20.   UFind in 'UFind.pas' {FFind},
  21.   USize in 'USize.pas' {FSize},
  22.   UInput in 'UInput.pas' {FInput},
  23.   Uundo in 'Uundo.pas' {FUndo},
  24.   UDemo in 'UDemo.pas' {FDemo},
  25.   URoll in 'URoll.pas' {FRoll},
  26.   UFile in 'UFile.pas' {FFile};
  27.  
  28. {$R *.RES}
  29.  
  30. begin
  31.   Application.Initialize;
  32.   Application.Title := 'Cell 3.1+ /Delphi Programming Demo';
  33.   Application.CreateForm(TBase, Base);
  34.   Application.CreateForm(TAboutPro, AboutPro);
  35.   Application.CreateForm(TTemplate, Template);
  36.   Application.CreateForm(TFDrag, FDrag);
  37.   Application.CreateForm(TFDummy, FDummy);
  38.   Application.CreateForm(TFText, FText);
  39.   Application.CreateForm(TFCelltyp, FCelltyp);
  40.   Application.CreateForm(TFStyle, FStyle);
  41.   Application.CreateForm(TFBack, FBack);
  42.   Application.CreateForm(TFFormula, FFormula);
  43.   Application.CreateForm(TFSort, FSort);
  44.   Application.CreateForm(TFChart, FChart);
  45.   Application.CreateForm(TFPrint, FPrint);
  46.   Application.CreateForm(TFMultiPag, FMultiPag);
  47.   Application.CreateForm(TFSave, FSave);
  48.   Application.CreateForm(TFFind, FFind);
  49.   Application.CreateForm(TFSize, FSize);
  50.   Application.CreateForm(TFInput, FInput);
  51.   Application.CreateForm(TFUndo, FUndo);
  52.   Application.CreateForm(TFDemo, FDemo);
  53.   Application.CreateForm(TFRoll, FRoll);
  54.   Application.CreateForm(TFFile, FFile);
  55.   Application.Run;
  56. end.
  57.